org.eclipse.vtp.framework.interactions.core.conversation
Interface IOutputMessage

All Superinterfaces:
IInteraction

public interface IOutputMessage
extends IInteraction

A message that displays data to the agent on the other end of a conversation.

Author:
Lonnie Pryor

Method Summary
 void setParameterValue(java.lang.String name, java.lang.String value)
          Sets the value of a parameter configured on this interaction.
 void setParameterValues(java.lang.String name, java.lang.String[] values)
          Sets all the values configured for the specified parameter on this interaction.
 
Methods inherited from interface org.eclipse.vtp.framework.interactions.core.conversation.IInteraction
enqueue, process
 

Method Detail

setParameterValue

void setParameterValue(java.lang.String name,
                       java.lang.String value)
Sets the value of a parameter configured on this interaction.

Parameters:
name - The name of the parameter to set the value of.
value - The value to set the parameter to.

setParameterValues

void setParameterValues(java.lang.String name,
                        java.lang.String[] values)
Sets all the values configured for the specified parameter on this interaction.

Parameters:
name - The name of the parameter to set the values of.
values - The values to set the parameter to.